home *** CD-ROM | disk | FTP | other *** search
/ Macromedia Multimedia Showcase 6.0 / Macromedia Multimedia Showcase v6.0 WIN-MAC (XMSH60CD)(Macromedia, Inc.)(1996).iso / pc / demosoft / dirwin / data.z / ANIMWIZ.DIR / 00006_Script_TextField < prev    next >
Text File  |  1996-03-15  |  302b  |  18 lines

  1. -- TextField script
  2.  
  3. property iFieldName
  4.  
  5. on birth me, theFieldName, theInitialText
  6.   set iFieldName = theFieldName
  7.   set the text of field iFieldname = theInitialText
  8.   return me
  9. end birth
  10.  
  11. -- Needed to support general validation scheme
  12. on mValidate me
  13.   return TRUE
  14. end mValidate
  15.  
  16.  
  17.  
  18.